home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_9.lha / 7_9 / makefile < prev    next >
Makefile  |  1993-08-08  |  426b  |  25 lines

  1. C= CC -I. -I../7.6dir -I../../CC
  2. FLAGS=
  3.  
  4. ll: tst
  5.  
  6. st: tst.o all.o
  7. $(CC) -o tst tst.o all.o
  8.  
  9. st.o: tst.c 7_9.h 7_9_dlist.h nlink.h
  10. $(CC) -c tst.c
  11.  
  12. ll.o: all.c 7_9.h 7_9_dlist.h nlink.h \
  13. 7_9_apph.c 7_9_clear.c 7_9_cons.c 7_9_getn.c 7_9_getp.c \
  14. 7_9_ins.c 7_9_insh.c 7_9_next.c 7_9_prev.c 7_9_app.c
  15. $(CC) -c all.c
  16.  
  17. MP= tst.cmp
  18. UT= tst.out
  19.  
  20. st.out: tst ; tst > tst.out
  21.  
  22. est: all $(CMP) $(OUT)
  23. cmp tst.out tst.cmp
  24. @echo test done
  25.